home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / doc-base.prerm < prev    next >
Text File  |  2009-06-08  |  834b  |  45 lines

  1. #!/bin/sh
  2. # $Id: prerm 115 2008-03-31 18:16:38Z robert $
  3. # prerm for doc-base
  4.  
  5. # Abort if any command returns an error value
  6. set -e
  7.  
  8. package=doc-base
  9. ctrldir="/usr/share/$package"
  10. infodir="/var/lib/$package/info"
  11.  
  12. if [ "$DEBUG" ]; then
  13.     echo entering $package prerm
  14.     set -x
  15. fi
  16.  
  17. remove_all_docs ( ) {
  18.     if which install-docs >/dev/null 2>&1; then
  19.     install-docs ${VERBOSE}  --remove-all || true
  20.  
  21.     else
  22.     # error because this *is* the doc-base package
  23.     echo "cannot find install-docs on path" 1>&2
  24.     exit 1
  25.     fi
  26. }
  27.  
  28.  
  29. case "$1" in
  30.   remove)
  31.     remove_all_docs
  32.     ;;
  33.   upgrade)
  34.     ;;
  35.   failed-upgrade)
  36.     # Prepare to upgrade from version $2 of this package TO THIS VERSION.
  37.     # This is only used if the old version's prerm couldn't handle it,
  38.     # and returned non-zero.  (Fix old prerm bugs here.)
  39.     ;;
  40. esac
  41.  
  42.  
  43.  
  44. exit 0
  45.